home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / netprog.zip / NETPROG.TAR / nspipe.s5 / Makefile next >
Makefile  |  1989-12-17  |  176b  |  15 lines

  1. #
  2.  
  3. MYLIB    = ../libnet.a
  4.  
  5. all:    readnspipe
  6.  
  7. #
  8.  
  9. readnspipe: readnspipe.o $(MYLIB)
  10.         cc $(CFLAGS) -o $@ readnspipe.o $(MYLIB)
  11.  
  12. #
  13. clean:
  14.     -rm -f *.o core a.out temp*.* readnspipe
  15.